home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / libray / libcommon / smakefile < prev    next >
Encoding:
Makefile  |  1994-08-20  |  2.2 KB  |  116 lines

  1. OPTIMIZE = OPTIMIZE
  2. CCFLAGS = CPU=68040 NOSTKCHK MATH=68881 IGNORE=85+100+161+154+84+132 STRMERGE\
  3. DATA=AUTO
  4. RANLIB = ranlib
  5. CC = sc
  6. MKDEP = //mkdep
  7.  
  8. LIB = /ray.lib
  9. INCLUDE = IDIR=//
  10. CFLAGS = $(CCFLAGS) $(INCLUDE) $(OPTIMIZE)
  11. SHELL = /bin/sh
  12.  
  13. CFILES = memory.c expr.c transform.c rotate.c sampling.c scale.c translate.c \
  14.     vecmath.c xform.c
  15. OFILES = memory.o expr.o transform.o rotate.o sampling.o scale.o translate.o \
  16.     vecmath.o xform.o
  17.  
  18. .c.o:
  19.     $(CC) $(CFLAGS) $<
  20.  
  21. target:    $(LIB)
  22.  
  23. $(LIB): $(OFILES)
  24.     oml $(LIB) r $(OFILES)
  25.  
  26. clean:
  27.     delete \#?.o quiet
  28.  
  29. # DO NOT DELETE THIS LINE
  30. memory.o: memory.c
  31. memory.o: //config.h
  32. memory.o: color.h
  33. memory.o: common.h
  34. memory.o: error.h
  35. memory.o: expr.h
  36. memory.o: ray.h
  37. memory.o: transform.h
  38. memory.o: vector.h
  39. expr.o: expr.c
  40. expr.o: //config.h
  41. expr.o: color.h
  42. expr.o: common.h
  43. expr.o: error.h
  44. expr.o: expr.h
  45. expr.o: ray.h
  46. expr.o: transform.h
  47. expr.o: vector.h
  48. transform.o: transform.c
  49. transform.o: //config.h
  50. transform.o: color.h
  51. transform.o: common.h
  52. transform.o: error.h
  53. transform.o: expr.h
  54. transform.o: ray.h
  55. transform.o: transform.h
  56. transform.o: vector.h
  57. rotate.o: rotate.c
  58. rotate.o: //config.h
  59. rotate.o: color.h
  60. rotate.o: common.h
  61. rotate.o: error.h
  62. rotate.o: expr.h
  63. rotate.o: ray.h
  64. rotate.o: rotate.h
  65. rotate.o: transform.h
  66. rotate.o: vector.h
  67. sampling.o: sampling.c
  68. sampling.o: //config.h
  69. sampling.o: color.h
  70. sampling.o: common.h
  71. sampling.o: error.h
  72. sampling.o: expr.h
  73. sampling.o: ray.h
  74. sampling.o: sampling.h
  75. sampling.o: transform.h
  76. sampling.o: vector.h
  77. scale.o: scale.c
  78. scale.o: //config.h
  79. scale.o: color.h
  80. scale.o: common.h
  81. scale.o: error.h
  82. scale.o: expr.h
  83. scale.o: ray.h
  84. scale.o: scale.h
  85. scale.o: transform.h
  86. scale.o: vector.h
  87. translate.o: translate.c
  88. translate.o: //config.h
  89. translate.o: color.h
  90. translate.o: common.h
  91. translate.o: error.h
  92. translate.o: expr.h
  93. translate.o: ray.h
  94. translate.o: transform.h
  95. translate.o: translate.h
  96. translate.o: vector.h
  97. vecmath.o: vecmath.c
  98. vecmath.o: //config.h
  99. vecmath.o: color.h
  100. vecmath.o: common.h
  101. vecmath.o: error.h
  102. vecmath.o: expr.h
  103. vecmath.o: ray.h
  104. vecmath.o: transform.h
  105. vecmath.o: vector.h
  106. xform.o: xform.c
  107. xform.o: //config.h
  108. xform.o: color.h
  109. xform.o: common.h
  110. xform.o: error.h
  111. xform.o: expr.h
  112. xform.o: ray.h
  113. xform.o: transform.h
  114. xform.o: vector.h
  115. xform.o: xform.h
  116.